home *** CD-ROM | disk | FTP | other *** search
- /* =================
- * PedHandlerQuit.hh
- * =================
- */
-
- #pragma once
-
- #include "AEAHandlerQuit.hh"
-
- class PedApplication;
-
- class PedHandlerQuit : public AEAHandlerQuit {
- public:
- PedHandlerQuit(PedApplication &inApp);
- virtual ~PedHandlerQuit() {}
- virtual void NotifyAppQuitEvent();
-
- protected:
- PedApplication &mApp;
- };
-